home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -seriously_amiga- / misc / ppclibemu / tests / hello_world.c next >
C/C++ Source or Header  |  1999-02-03  |  95b  |  9 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.   printf("Hello %s!\n","World");
  7.   exit(0);
  8. }
  9.